home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / redhat-RHSA-2004-687.nasl < prev    next >
Text File  |  2005-01-14  |  5KB  |  148 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4. #
  5. # The text of this plugin is (C) Red Hat Inc.
  6.  
  7. if ( ! defined_func("bn_random") ) exit(0);
  8. if(description)
  9. {
  10.  script_id(16041);
  11.  script_version ("$Revision: 1.1 $");
  12.  script_cve_id("CAN-2004-0958", "CAN-2004-0959", "CAN-2004-1018", "CAN-2004-1019", "CAN-2004-1065");
  13.  
  14.  name["english"] = "RHSA-2004-687: php";
  15.  
  16.  script_name(english:name["english"]);
  17.  
  18.  desc["english"] = '
  19.  
  20.   Updated php packages that fix various security issues and bugs are now
  21.   available for Red Hat Enterprise Linux 3.
  22.  
  23.   PHP is an HTML-embedded scripting language commonly used with the Apache
  24.   HTTP Web server.
  25.  
  26.   Flaws including possible information disclosure, double free, and negative
  27.   reference index array underflow were found in the deserialization code of
  28.   PHP. PHP applications may use the unserialize function on untrusted user
  29.   data, which could allow a remote attacker to gain access to memory or
  30.   potentially execute arbitrary code. The Common Vulnerabilities and
  31.   Exposures project (cve.mitre.org) has assigned the name CAN-2004-1019 to
  32.   this issue.
  33.  
  34.   A flaw in the exif extension of PHP was found which lead to a stack
  35.   overflow. An attacker could create a carefully crafted image file in such
  36.   a way that if parsed by a PHP script using the exif extension it could
  37.   cause a crash or potentially execute arbitrary code. The Common
  38.   Vulnerabilities and Exposures project (cve.mitre.org) has assigned the name
  39.   CAN-2004-1065 to this issue.
  40.  
  41.   An information disclosure bug was discovered in the parsing of "GPC"
  42.   variables in PHP (query strings or cookies, and POST form data). If
  43.   particular scripts used the values of the GPC variables, portions of the
  44.   memory space of an httpd child process could be revealed to the client.
  45.   The Common Vulnerabilities and Exposures project (cve.mitre.org) has
  46.   assigned the name CAN-2004-0958 to this issue.
  47.  
  48.   A file access bug was discovered in the parsing of "multipart/form-data"
  49.   forms, used by PHP scripts which allow file uploads. In particular
  50.   configurations, some scripts could allow a malicious client to upload files
  51.   to an arbitrary directory where the "apache" user has write access. The
  52.   Common Vulnerabilities and Exposures project (cve.mitre.org) has assigned
  53.   the name CAN-2004-0959 to this issue.
  54.  
  55.   Flaws were found in shmop_write, pack, and unpack PHP functions. These
  56.   functions are not normally passed user supplied data, so would require a
  57.   malicious PHP script to be exploited. The Common Vulnerabilities and
  58.   Exposures project (cve.mitre.org) has assigned the name CAN-2004-1018 to
  59.   this issue.
  60.  
  61.   Various issues were discovered in the use of the "select" system call in
  62.   PHP, which could be triggered if PHP is used in an Apache configuration
  63.   where the number of open files (such as virtual host log files) exceeds the
  64.   default process limit of 1024. Workarounds are now included for some of
  65.   these issues.
  66.  
  67.   The "phpize" shell script included in PHP can be used to build third-party
  68.   extension modules. A build issue was discovered in the "phpize" script on
  69.   some 64-bit platforms which prevented correct operation.
  70.  
  71.   The "pcntl" extension module is now enabled in the command line PHP
  72.   interpreter, /usr/bin/php. This module enables process control features
  73.   such as "fork" and "kill" from PHP scripts.
  74.  
  75.   Users of PHP should upgrade to these updated packages, which contain fixes
  76.   for these issues.
  77.  
  78.  
  79.  
  80.  
  81. Solution : http://rhn.redhat.com/errata/RHSA-2004-687.html
  82. Risk factor : High';
  83.  
  84.  script_description(english:desc["english"]);
  85.  
  86.  summary["english"] = "Check for the version of the php packages";
  87.  script_summary(english:summary["english"]);
  88.  
  89.  script_category(ACT_GATHER_INFO);
  90.  
  91.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  92.  family["english"] = "Red Hat Local Security Checks";
  93.  script_family(english:family["english"]);
  94.  
  95.  script_dependencies("ssh_get_info.nasl");
  96.  
  97.  script_require_keys("Host/RedHat/rpm-list");
  98.  exit(0);
  99. }
  100.  
  101. include("rpm.inc");
  102. if ( rpm_check( reference:"php-4.3.2-19.ent", release:"RHEL3") )
  103. {
  104.  security_hole(0);
  105.  exit(0);
  106. }
  107. if ( rpm_check( reference:"php-devel-4.3.2-19.ent", release:"RHEL3") )
  108. {
  109.  security_hole(0);
  110.  exit(0);
  111. }
  112. if ( rpm_check( reference:"php-imap-4.3.2-19.ent", release:"RHEL3") )
  113. {
  114.  security_hole(0);
  115.  exit(0);
  116. }
  117. if ( rpm_check( reference:"php-ldap-4.3.2-19.ent", release:"RHEL3") )
  118. {
  119.  security_hole(0);
  120.  exit(0);
  121. }
  122. if ( rpm_check( reference:"php-mysql-4.3.2-19.ent", release:"RHEL3") )
  123. {
  124.  security_hole(0);
  125.  exit(0);
  126. }
  127. if ( rpm_check( reference:"php-odbc-4.3.2-19.ent", release:"RHEL3") )
  128. {
  129.  security_hole(0);
  130.  exit(0);
  131. }
  132. if ( rpm_check( reference:"php-pgsql-4.3.2-19.ent", release:"RHEL3") )
  133. {
  134.  security_hole(0);
  135.  exit(0);
  136. }
  137.  
  138. if ( rpm_exists(rpm:"php-", release:"RHEL3") )
  139. {
  140.  set_kb_item(name:"CAN-2004-0958", value:TRUE);
  141.  set_kb_item(name:"CAN-2004-0959", value:TRUE);
  142.  set_kb_item(name:"CAN-2004-1018", value:TRUE);
  143.  set_kb_item(name:"CAN-2004-1019", value:TRUE);
  144.  set_kb_item(name:"CAN-2004-1065", value:TRUE);
  145. }
  146.  
  147. set_kb_item(name:"RHSA-2004-687", value:TRUE);
  148.